home *** CD-ROM | disk | FTP | other *** search
- ; CD Answer Installation Script - Generic jdk
- ; <<CDA>> Jun 1 1993;3.2
- ; Apr 8 1993 hs, Jun 1 1993 hg
- ; single/multiple disk version
- ;
- ; To customize this install script:
- ; 1. Put the product name (1-8 characters) in a file called
- ; 'PRODNAME'. There should be no carriage return/line feed at
- ; the end of the name- the file should contain just the characters
- ; of the name.
- ; 2. Put the application name (CD Author 4 character project identifier)
- ; in a file called 'APPLNAME'. Again, no other chars should be
- ; the file. Multiple applications are formed by adding a space,
- ; then another application identifier
- ; 3. Put the start-up message in a file called PRODSCRN.<language>
- ; There should not be more than 10 lines.
- ;
- ; The first disk must contain the \INSTALL directory.
- ; This contains the general system files for the install
- ; process and may be repeated on disk #2, etc.
- ; The application specific files are kept in a directory
- ; named 'DISK1'. If additional disks are required, create
- ; an (empty) file on the current disk named '\MORE' and
- ; put the overflow files in a directory named \DISK2 (3, 4, ...).
-
- BREAK abort
-
- ; install disk
- PARSE_PATH <$ProgDir>
- SET insdrive = <$Drive>
- SET ins = <insdrive>\INSTALL
- SET curdisk = 1
- GOSUB need_disk
-
- ; here are some defaults:
-
- ;TFPL 8-6-93
- ;CONFIG Colors = 0 2 0 30 0 30 0 30 0 112 0 143 0 79 0 79 0 48 0 15 0 30 0 79 0 143 1 30
- ;CONFIG ColorSet = 55
- ;TFPL
- ; default destination drive
- PARSE_PATH <$CurDir>
- SET def_dest = C:\
- IF NOT "<$Drive>"=="<insdrive>" DO SET def_def = <$Drive>
-
- ; default CD-ROM interface (FS_HSGEN {High Sierra} or FS_ISGEN {ISO})
- SET def_cdtype = High Sierra
- SET def_driver = FS_HSGEN
- IF EXISTS <insdrive>\INSTALL\<def_driver>.* GOTO ok_driver
- SET def_cdtype = ISO
- SET def_driver = FS_ISGEN
- :ok_driver
-
- ; language
- SET def_lang = <$Language>
-
- ; application name(s) (4 char ident(s) on CD-ROM)
- READFILE names = <ins>\APPLNAME.
-
- ; product name (application name for batch file, subdirectory name)
- READFILE prod = <ins>\PRODNAME.
-
- ; default dest drive and directory
- PARSE_PATH <def_dest><prod>.CD
- SET dstdrive = <$Drive>
- SET path = <$Dir>
- CD <dstdrive>\
-
- ; read and display Application Installation Screen
- IF NOT EXISTS <insdrive>\INSTALL\PRODSCRN.<def_lang> GOTO no_banner
- READFILE screen = <insdrive>\INSTALL\PRODSCRN.<def_lang>
- GOTO show_banner
- :no_banner
- SET screen =
- ---- CD Answer Installation pour:\n\n
- ---- <prod>\n\n
- ---- Application(s): <names>
- :show_banner
- CLEAR
- TEXT <screen>
- SET screen =
- WAIT
-
- GOTO okdir
- :getdir
- CLEAR
- TEXT \nError -\n\n
- ---- Le chemin d'accès <dstdrive><path> n'est pas autorisé!
- ---- Pour que l'installation du logiciel reussise, il faut qu'il y ait
- ---- un nom valide de sous-répertoire et d'unité.
- WAIT
- :okdir
- CLEAR
- TEXT Le logiciel d'extraction doit être installé sur votre disque dur ou sur un
- ---- disquette formatée. Les valeurs standards sont <dstdrive> pour l'unité (le
- ---- disque dur généralement) et un sous-répertoire désigné sous le nom de
- ---- <path>. Pour utiliser ces valeurs, appuyez à
- ---- deux reprises sur ─┘ (Entrée). Si vous voulez les modifier, tapez
- ---- le nouveau nom de l'unité et du sous-répertoire en regard de l'invite
- ---- appropriée, puis appuyez sur ─┘ (Entrée)
- INPUT 6,8,5 dstdrive = Installation sur unité ?
- INPUT 6,10,40 path = Installation dans répertoire ?
- SET dest = <dstdrive><path>
- SET confile = <ins>\_DW_.CFG
-
- IF "<dstdrive>"=="" GOTO getdir
- IF "<path>"=="\" GOTO getdir
- IF "<path>"=="" GOTO getdir
- IF NOT DIREXISTS <dstdrive>\ GOTO getdir
-
- CD <dstdrive>\
-
- IF NOT DIREXISTS <dest> GOTO nopath
- IF NOT EXISTS <dest>\DW.EXE GOTO nopath
- CLEAR
- TEXT Le répertoire "<dest>" existe déjà.
- NEWMENU 1, 3, 67
- ;TFPL -8-6-93
- MENU Installer le logical et seulement l'interface françcias
- MENU Installer le logical et les interfaces pour toutes les langues
- ;TFPL
- MENU Supprimez l'ancienne version; n'installez pas le nouveau
- MENU Modifiez la configuration; ne copiez pas le logiciel
- MENU Interrompez l'installation sans faire aucune modification
- ENDCHOICES
-
- ;TFPL -8-6-93
- CHOICE 1
- CLEAR
- TEXT Effacement du contenu antérieur de <dest>...
- FOREACH name = <names>
- DEL <dest>\<name>*.*
- NEXT
- DEL <dest>\FS_*.DRV
- DEL <dest>\SC_*.DRV
- DEL <dest>\PR_*.DRV
- DEL <dest>\GR_*.DRV
- DEL <dest>\_DW_*.*
- DEL <dest>\ADL_MSGS.*
- DEL <dest>\DW.EXE
- DEL <dest>\UPDATE.EXE
- SET ch = 2
- GOTO okpath
-
- ;TFPL
-
- CHOICE 2
- CLEAR
- TEXT Effacement du contenu antérieur de <dest>...
- FOREACH name = <names>
- DEL <dest>\<name>*.*
- NEXT
- DEL <dest>\FS_*.DRV
- DEL <dest>\SC_*.DRV
- DEL <dest>\PR_*.DRV
- DEL <dest>\GR_*.DRV
- DEL <dest>\_DW_*.*
- DEL <dest>\ADL_MSGS.*
- DEL <dest>\DW.EXE
- DEL <dest>\UPDATE.EXE
- SET ch = 3
- GOTO okpath
-
- CHOICE 3
- CLEAR
- TEXT Suppression du répertoire <dest>...
- FOREACH name = <names>
- DEL <dest>\<name>*.*
- NEXT
- DEL <dest>\FS_*.DRV
- DEL <dest>\SC_*.DRV
- DEL <dest>\PR_*.DRV
- DEL <dest>\GR_*.DRV
- DEL <dest>\_DW_*.*
- DEL <dest>\ADL_MSGS.*
- DEL <dest>\DW.EXE
- DEL <dest>\UPDATE.EXE
- IF NOT EXISTS <dest>\*.* GOTO remdest
- TEXT Le répertoire <dest> contient des fichiers non répertories,
- ---- le répertoire n'est pas supprimé !!
- WAIT
- GOTO norem
- :remdest
- RD <dest>
- :norem
- DEL <dstdrive>\<prod>.BAT
- GOTO end2
-
- CHOICE 4
- SET alter = Y
- SET confile = <dest>\_DW_.CFG
- GOTO okpath
-
- CHOICE 5
- GOTO end2
- ENDCHOICES
-
- :nopath
- MD <dest>
- IF NOT DIREXISTS <dest> GOTO getdir
- ;TFPL -8-6-93
- TEXT New Installation
- NEWMENU 1, 3, 64
- MENU Installer le logical et seulement l'interface françcias
- MENU Installer le logical et les interfaces pour toutes les langues
- ENDCHOICES
-
- CHOICE1
- SET ch = 2
- GOTO okpath
-
- CHOICE2
- SET ch = 3
- GOTO okpath
- ENDCHOICES
-
- :okpath
-
- ;----------------------------------------------------------------------------
-
- IF NOT EXISTS <confile> GOTO no_config
- DISP 5,14 Reading configuration...
- READCONFIG <confile>
- :no_config
-
- ;----------------------------------------------------------------------------
-
- HSCOUNT hs
- IF NOT <hs>==0 GOTO have_hs
-
- CLEAR
- TEXT Problème - Aucune unité CD-ROM n'est installée. \n\n Veuillez utiliser le
- ---- disque d'installation fourni par votre fabricant d'unité CD-ROM pour
- ---- installer le questionnaire de périphériques. Puis réexecutez le programme
- ---- d'installation. \n\n
- ---- Remarque : le disque d'installation de l'unité CD-ROM reproduira quelques
- ---- fichiers sur votre disque système et modifiera les fichiers
- ---- CONFIG.SYS et AUTOEXEC.BAT.
- ---- D'autres programmes utilisent MSCDEX, il est recommande de supprimer
- ---- la ligne d'appel de ce programme de votre fichier AUTOEXEC.BAT, étant
- ---- donné que ce logiciel n'en a pas besoin. Assurez vous de
- ---- réinitialiser votre système une fois que les modules CD-ROM sont
- ---- installés.
- WAIT
- ABORT
-
- :have_hs
- ;TFPL 19-11-93
- GOTO get_hs_letter
-
- SET msg =
- IF <hs>==1 GOTO instOne
-
- TEXT Vous pouvez choisir parmi différentes unités CD-ROM <def_cdtype>. Avec
- ---- l'aide des touches et , sélectionnez le périphérique CD-ROM
- ---- <def_cdtype> dans la liste, puis appuyez sur ┘ (Entrée) lorsque vous êtes
- ---- prêt à commencer. Appuyez sur Echap pour interrompre l'installation.
- GOTO :instMore
-
- :instOne
- SET msg = Un module CD-ROM <def_cdtype> est installe (voir CONFIG.SYS):\n\n
-
- :instMore
- HSDRIVER hsname = 25, 6
- CONFIG Driver = "<def_driver>=<hsname>"
- CLEAR
- TEXT <msg> Le module CD-ROM <def_cdtype> sélectionné est nommé "«<hsname>»". Dans le cas ou cette information est érronee, appuyez sur Echap pour
- ---- interrompre l'installation et vérifiez votre fichier CONFIG.SYS.
- ---- Il n'est pas nécessaire de faire appel au programme MSCDEX.EXE
- ---- (Extensions CD-ROM de Microsoft) pour exécuter ce logiciel.
- ---- A moins qu'il soit nécessaire pour un autre logiciel, vous pouvez
- ---- supprimer ce programme de votre fichier \AUTOEXEC.BAT (dans lequel
- ---- le programme d'installation de l'unité peut l'avoir placé).
-
- WAIT
-
- CLEAR
- TEXT Copie de l'interface CD-ROM <def_cdtype>...
- SET driver_name = <def_driver>.DRV
- GOSUB copy_driver
- ;TFPL 19-11-93
- :get_hs_letter
- CLEAR
- :tfpl_drive
- GOTO tfp1
- :drive_error
- TEXT Error: The database is not available on the specified drive...\n\n
- :tfp1
- TEXT \n\n
- ----Taper la lettre attribué à votre lecteur de CD-ROM \n
- ----(en général "D")...
-
- INPUT 2,10,1 inst_drive = CD-ROM ?
- IF "inst_drive"=="" GOTO drive_error
- IF NOT DIREXISTS <inst_drive>:\ GOTO drive_error
- IF NOT EXISTS <inst_drive>:\TTLEDD00 GOTO drive_error
-
- ;SET instdrive = <inst_drive>:\
- CONFIG Driver = "<inst_drive>:\"
- ;CONFIG MaskPath = "<inst_drive>:\DISK1"
-
- ;---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- -
- :disp_choice
- CLEAR
- TEXT Options Ecran :\n
- ---- Avec l'aide des flèches et , sélectionnez un type d'écran, puis appuyez sur ┘ (Entrée).
-
-
- NEWMENU ? 6 46
- MENU Ecran standard Pas de graphiques
- MENU Adaptateur VGA
- MENU Adaptateur MCGA
- MENU Adaptateur EGA
- MENU Adaptateur CGA
- MENU Carte graphique Hercules
- MENU Olivetti, AT&T ou Compaq Plasma
- MENU Ecran entièr
-
- IF "<$Screen:1:3>"=="VGA" DO MENU_DEFAULT 2
- IF "<$Screen:1:4>"=="MCGA" DO MENU_DEFAULT 3
- IF "<$Screen:1:3>"=="EGA" DO MENU_DEFAULT 4
- IF "<$Screen:1:3>"=="CGA" DO MENU_DEFAULT 5
- IF "<$Screen:1:3>"=="HER" DO MENU_DEFAULT 6
- IF "<$Screen:1:3>"=="COR" DO MENU_DEFAULT 8
- IF "<$Screen:1:3>"=="MDS" DO MENU_DEFAULT 8
-
- SET Port = N
- SET Graphic = N
-
- CHOICE 1
- SET scr_type = SC_STD
- SET Port = ?
- CHOICE 2
- SET scr_type = SC_VGA
- SET Port = ?
- CHOICE 3
- SET scr_type = SC_MCGA
- SET Port = ?
- CHOICE 4
- SET scr_type = SC_EGA
- SET Port = ?
- CHOICE 5
- SET scr_type = SC_CGA
- SET Port = ?
- CHOICE 6
- SET scr_type = SC_HERC
- CHOICE 7
- SET scr_type = SC_ATT
- SET Port = ?
- CHOICE 8
- SET scr_type = FP
- ENDCHOICES
-
- IF NOT "<scr_type>"=="FP" GOTO not_full_page
-
- CLEAR
- TEXT Options Ecran :\n
- ---- Avec l'aide des flèches et , sélectionnez un type d'écran, puis appuyez sur ┘ (Entrée).
-
- NEWMENU ? 6 46
- MENU Cornerstone FullPage
- MENU MDS Genius
-
- IF "<$Screen:1:3>"=="COR" DO MENU_DEFAULT 1
- IF "<$Screen:1:3>"=="MDS" DO MENU_DEFAULT 2
-
- CHOICE 1
- SET scr_type = SC_CNRST
- CHOICE 2
- SET scr_type = SC_MDS
- ENDCHOICES
-
- :not_full_page
-
- SET extra =
- IF NOT "<Port>" == "?" GOTO no_scr_opts
-
- CLEAR
- TEXT Copie du module d'écran...
- ---- Avec l'aide des flèches et , sélectionnez un type d'écran, puis appuyez sur ┘ (Entrée).
-
-
- NEWMENU ? 6 52
- MENU Ecran standard Moniteur Couleur ou monochrome
- MENU Ordinateur portatif Ecran monochrome intégré
- IF "<scr_type>"=="SC_CGA" DO MENU Older Color Screens - interference or "snow"
-
- IF "<$Screen:-4>"=="PORT" DO MENU_DEFAULT 2
-
- CHOICE 2
- SET extra = P
- CHOICE 3
- SET extra = F
- ENDCHOICES
-
- :no_scr_opts
-
- CONFIG Screen = "<scr_type>=<extra>"
-
- CLEAR
- TEXT Copie du module d'écran
- SET driver_name = <scr_type>.DRV
- GOSUB copy_driver
-
- ;---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- -
-
- CLEAR
- TEXT Sélections d'imprimantes:\n
- ---- Avec l'aide des flèches et , sélectionnez l'imprimante desirée\n
- ---- et appuyez sur ┘ (Entrée).
-
- SET extra =
-
- NEWMENU ? 6 46
- MENU Famille HP LaserJet
- MENU Famille HP DeskJet
- MENU Contrôleur imprimante JLaser
- MENU Autre imprimante
-
- CHOICE 1
- SET prn_type = PR_PCL?
- CHOICE 2
- SET prn_type = PR_DJ?
- CHOICE 3
- SET prn_type = PR_JL?
- CHOICE 4
- SET prn_type = PR_STD
- ENDCHOICES
-
- IF "<prn_type>" == "PR_PCL?" GOTO pr_type_1
- IF "<prn_type>" == "PR_DJ?" GOTO pr_type_2
- IF "<prn_type>" == "PR_JL?" GOTO pr_type_3
- IF "<prn_type>" == "PR_STD" GOTO pr_type_4
-
- :pr_type_1
-
- CLEAR
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU HP LaserJet(+), LaserJet 500(+), LaserJet 2000
- MENU HP LaserJet Series II, IID
- MENU HP LaserJet IIP(+), III(+), IIID, IIIP, IIISi
-
- CHOICE 1
- SET extra = R
- CHOICE 2
- SET extra = X
- CHOICE 3
- SET extra = XG
- ENDCHOICES
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU 300 Dpi (mémoire 1Mb)
- MENU 150 Dpi (mémoire 512Kb)
- MENU 75 Dpi (mémoire 256Kb)
-
- CHOICE 1
- SET prn_type = PR_PCL30
- CHOICE 2
- SET prn_type = PR_PCL15
- CHOICE 3
- SET prn_type = PR_PCL75
- ENDCHOICES
-
- GOTO pr_type_ok
-
- :pr_type_2
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU HP DeskJet(+)
- MENU HP DeskJet 500
- MENU HP DeskJet 500C
-
- CHOICE 1
- SET extra = X
- CHOICE 2
- SET extra = XG
- CHOICE 3
- SET extra = XG
- ENDCHOICES
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU 300 Dpi
- MENU 150 Dpi
- MENU 75 Dpi
-
- CHOICE 1
- SET prn_type = PR_PCL30
- CHOICE 2
- SET prn_type = PR_PCL15
- CHOICE 3
- SET prn_type = PR_PCL75
- ENDCHOICES
-
- GOTO pr_type_ok
-
- :pr_type_3
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU HP LaserJet(+), LaserJet 500(+), LaserJet 2000
- MENU HP LaserJet (autres modèles)
- MENU Canon LBP (tous modèles)
-
- CHOICE 1
- SET prn_type = PR_JLHP
- SET extra = R
- CHOICE 2
- SET prn_type = PR_JLHP
- SET extra = X
- CHOICE 3
- SET prn_type = PR_JLCAN
- ENDCHOICES
-
- GOTO pr_type_ok
-
- :pr_type_4
-
- GOSUB pr_detail
-
- NEWMENU ? 6 46
- MENU PC série de 8 bit caractères
- MENU National de 7 bit caractères
-
- CHOICE 2
- SET extra = 7
- ENDCHOICES
-
- GOTO pr_type_ok
-
- :pr_detail
- CLEAR
- TEXT Choix des détails d'imprimante:\n
- ---- Utiliser les flèches et pour choisir les options de\n
- ---- l'imprimante et poussez ┘ (Enter)
- RETURN
-
- :pr_type_ok
-
- SET port =
-
- NEWMENU ? 6 40
- MENU LPT1 Imprimante parallèle # 1
- MENU COM1 Imprimante séquentielle # 1
- MENU LPT2 Imprimante parallèle # 2
- MENU COM2 Imprimante séquentielle # 2
- MENU LPT3 Imprimante parallèle # 3
- MENU LPT4 Imprimante parallèle # 4
- MENU PRN L'imprimante courante DOS
-
- CLEAR
- TEXT Choix des connexions d'imprimante:\n
- ---- Utiliser les flèches et pour choisir le port de\n
- ---- l'imprimante et poussez ┘ (Enter)
-
- CHOICE 1
- SET port = LPT1,
- CHOICE 2
- SET port = COM1,
- CHOICE 3
- SET port = LPT2,
- CHOICE 4
- SET port = COM2,
- CHOICE 5
- SET port = LPT3,
- CHOICE 6
- SET port = LPT4,
- CHOICE 7
- SET port = PRN,
- ENDCHOICES
-
- CONFIG Printer = "<prn_type>=<port><extra>"
-
- CLEAR
- TEXT Copie des connexions d'imprimante...
- SET driver_name = <prn_type>.DRV
- GOSUB copy_driver
-
- ;---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- -
-
- IF "<alter>"=="Y" GOTO done
-
- :read_disk
- GOSUB need_disk
- ;TFPL 8-6-93
- IF "<ch>"=="2" GOTO inst_only_eng
- IF "<ch>"=="3" GOTO inst_all
-
- :inst_only_eng
- CLEAR
-
- TEXT Installation des fichiers du logiciel et de l'interface français on cours....
- COPY_OPT <insdrive>\DISK<curdisk>\*.FRA <dest>
- COPY_OPT <insdrive>\DISK<curdisk>\*.EXE <dest>
- COPY_OPT <insdrive>\DISK<curdisk>\*.DRV <dest>
- COPY_OPT <insdrive>\DISK<curdisk>\*. <dest>
- COPY_OPT <ins>\_DW_MSGS.FRA <dest>
- COPY_OPT <ins>\ADL_MSGS.FRA <dest>
- GOTO adl_dw_message
-
- :inst_all
- ;TFPL
-
-
- CLEAR
- TEXT Installation des fichiers d'applications à partir du disque
- ---- d'installation <curdisk>...
- COPY_OPT <insdrive>\DISK<curdisk>\*.* <dest>
-
- ;TFPL 8-6-93
- COPY_OPT <ins>\_DW_MSGS.* <dest>
- COPY_OPT <ins>\ADL_MSGS.* <dest>
- GOTO adl_dw_message
-
- :inst_only_soft
- CLEAR
-
- TEXT Installing only software files...
- COPY_OPT <insdrive>\DISK<curdisk>\*.EXE <dest>
- COPY_OPT <insdrive>\DISK<curdisk>\*.DRV <dest>
- COPY_OPT <insdrive>\DISK<curdisk>\????.* <dest>
- COPY_OPT <ins>\_DW_MSGS.* <dest>
- COPY_OPT <ins>\ADL_MSGS.* <dest>
- ;TFPL
-
-
- ;Copy adl and dw message files
- :adl_dw_message
- IF NOT DIREXISTS <ins> GOTO skip_message_files
- COPY_OPT <ins>\UPDATE.EXE <dest>
- :skip_message_files
-
- CALC curdisk = <curdisk> + 1
- IF EXISTS <insdrive>MORE GOTO read_disk
-
- CONFIG Language = "<def_lang>"
- goto DONE
-
- :abort
- if "<dest>"=="" GOTO nofiles
- if "<alter>"=="Y" GOTO nofiles
- CLEAR
- TEXT \n\n!!! Installation interrompue !!!\n\n
- ---- Suppression des fichiers copiés...
- UNCOPY
- :nofiles
- CLEAR
- TEXT \n\n!!! Installation interrompue !!!\n\n
- goto END
-
- :copy_driver
- IF EXISTS <ins>\<driver_name> GOTO ok_copy
- CALC curdisk = <curdisk> + 1
- GOSUB need_disk
- GOTO copy_driver
- :ok_copy
- COPY <ins>\<driver_name> <dest>
- RETURN
-
- :need_disk
- IF DIREXISTS <insdrive>\DISK<curdisk> DO RETURN
- :retry_disk2
- CLEAR
- TEXT Introduisez le disque d'installation numéro <curdisk> et appuyez sur ┘ (Entrée) lorsque vous êtes prêt à commencer.
- WAIT
- IF DIREXISTS <insdrive>\DISK<curdisk> DO RETURN
-
- CLEAR
- TEXT Le disque introduit n'est pas le disque d'installation numéro <curdisk> !
- NEWMENU ?, 3, 15
- MENU Réessayer
- MENU Abondonner
-
- CHOICE 1
- GOTO retry_disk2
- ENDCHOICES
-
- ABORT
-
- :done
- CLEAR
- TEXT Mise à jour des textes
- WRITECONFIG <dest>\_DW_.CFG
- IF "<alter>"=="Y" GOTO end
- WRITEFILE <dstdrive>\<prod>.BAT = <dstdrive>\ncd <path>\nDW\ncd \\n
-
- CLEAR
- TEXT \nL'installation est terminée !\n\n
- ----Un fichier appelé <prod> a été crée dans le répertoire <dstdrive>. \n\nPour exécuter le programme, tapez : <prod> ┘\n\n
- ----Important: Pour que cette commande fonctionne selon les indications,
- ---- vous devez être dans le répertoire <dstdrive>\ ou ce répertoire doit
- ---- se trouver dans la commande PATH.
-
-
-
- :end
- WAIT
-
- :end2
- CD <$CurDir>
-
-
-
-
-
-